
# Getting Started

If you haven't installed Vyper yet, get NPM and enter this in your terminal:

```
npm i --save vyper
```

Importing into a project should be easy:

```Coffeescript
{ Type, Property, Mixin } = require "vyper"
```

If you want to make Vyper's modules accessible to all modules without calling `require(...)`, just call the `globalize()` method once:

```Coffeescript
require("vyper").globalize()
```

Here's a list of all accessible modules:

##### [Type]()

[Lazy]()

[Mixin]()

[Property]()

[*Comparator Types*]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Any]()

&nbsp;&nbsp;&nbsp;&nbsp;
[ArrayOf]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Null]()

&nbsp;&nbsp;&nbsp;&nbsp;
[ObjectOf]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Reference]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Required]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Undefined]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Value]()

&nbsp;&nbsp;&nbsp;&nbsp;
[Void]()
